mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-23 10:35:35 -04:00
14 lines
377 B
Bash
14 lines
377 B
Bash
#!/bin/sh
|
|
#This script copy all (versioned) files from Release_Windows into Release_Linux.
|
|
|
|
echo "Copying versioned files from Release_Windows to 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/
|
|
|
|
echo "Done."
|