mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-23 18:45:48 -04:00
9 lines
289 B
Bash
9 lines
289 B
Bash
#!/bin/sh
|
|
#This script copy all (versioned) files from Release_Windows into Release_Linux.
|
|
|
|
cd ../Binaries/Output/Release_Windows
|
|
git archive --format tar.gz --output ../allRuntimeFiles.tar master
|
|
cd ..
|
|
tar -xzf allRuntimeFiles.tar -C Release_Linux
|
|
rm allRuntimeFiles.tar
|
|
cd ../../scripts/ |