Skip to content

Commit

Permalink
simple python script for bin dist automatization
Browse files Browse the repository at this point in the history
  • Loading branch information
okbob committed Dec 27, 2024
1 parent dc608ea commit 4c1b16f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions install_bindist.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import os
import sys
import shutil

os.makedirs(sys.argv[2], exist_ok=True)
shutil.copy(sys.argv[3], os.path.join(sys.argv[2], sys.argv[4]))

for f in sys.argv[5:]:
shutil.copy(os.path.join(sys.argv[1], f), os.path.join(sys.argv[2], f))

0 comments on commit 4c1b16f

Please sign in to comment.