mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-05-01 20:19:36 +00:00
10 lines
252 B
Python
Executable File
10 lines
252 B
Python
Executable File
import os
|
|
import shutil
|
|
|
|
dir_path = os.path.dirname(os.path.realpath(__file__))
|
|
dest = dir_path + "/../packages/cqtdeployer_1_4/data/1.4/"
|
|
if not os.path.isdir(dest):
|
|
os.makedirs(dest)
|
|
|
|
shutil.copyfile(dir_path + "/alias/cqt.sh", dest + "/cqt.sh")
|