mirror of
https://github.com/openharmony/third_party_glib.git
synced 2026-07-20 22:57:17 -04:00
10 lines
184 B
Python
10 lines
184 B
Python
#!/usr/bin/env python3
|
|
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
if not os.environ.get('DESTDIR'):
|
|
print('GIO module cache creation...')
|
|
subprocess.call([sys.argv[1], sys.argv[2]])
|