blob: 36049b25a8a96ef87605017622ba87b5940006f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$install_dir = "TaSTT"
if (Test-Path $install_dir) {
rm -Recurse $install_dir
}
mkdir $install_dir > $null
mkdir $install_dir/Resources > $null
cp -Recurse ../Images TaSTT/Resources/Images
cp -Recurse ../Python TaSTT/Resources/Python
cp -Recurse ../Scripts TaSTT/Resources/Scripts
cp -Recurse ../Sounds TaSTT/Resources/Sounds
cp GUI/x64/Release/GUI.exe TaSTT/TaSTT.exe
#Compress-Archive -Path "$install_dir" -DestinationPath "$install_dir.zip" -Force
|