[Native][Tools] Add input directory in the bundles repack script
This commit is contained in:
@@ -5,14 +5,17 @@ import os
|
|||||||
import os.path
|
import os.path
|
||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
if len(sys.argv) != 2:
|
if len(sys.argv) != 3:
|
||||||
print('Usage: ' + sys.argv[0] + ' <kotlin_version>')
|
print('Usage: ' + sys.argv[0] + ' <kotlin_version> <input_dir>')
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
kotlinVersion = sys.argv[1]
|
kotlinVersion = sys.argv[1]
|
||||||
print('Repacking bundles for Kotlin/Native version ' + kotlinVersion)
|
inputDir = sys.argv[2]
|
||||||
|
print('Repacking bundles for Kotlin/Native version ' + kotlinVersion + ' from ' + inputDir)
|
||||||
|
os.chdir(inputDir)
|
||||||
|
|
||||||
bundles = [f for f in os.listdir('.') if f.startswith('kotlin-native-prebuilt-') and (f.endswith('.tar.gz') or f.endswith('.zip')) and os.path.isfile(f)]
|
bundles = [f for f in os.listdir('.')
|
||||||
|
if f.startswith('kotlin-native-prebuilt-') and (f.endswith('.tar.gz') or f.endswith('.zip')) and os.path.isfile(f)]
|
||||||
print('Found ' + str(len(bundles)) + ' bundle files to repack: ' + ', '.join(bundles))
|
print('Found ' + str(len(bundles)) + ' bundle files to repack: ' + ', '.join(bundles))
|
||||||
|
|
||||||
for bundle in bundles:
|
for bundle in bundles:
|
||||||
|
|||||||
Reference in New Issue
Block a user