Implement simulator release package builds (#159)
This commit is contained in:
committed by
GitHub
parent
72a9eb1279
commit
ceec04b34c
Executable
+17
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
#
|
||||
# Usage: release-simulator.sh [builddir] [target_path]
|
||||
# Example: release-simulator.sh buildsim release/Simulator-linux-amd64
|
||||
# Description: Releases the current simulator build files in the specified folder.
|
||||
#
|
||||
|
||||
build_path=$1
|
||||
target_path=$2
|
||||
|
||||
mkdir -p $target_path
|
||||
|
||||
cp version.txt $target_path
|
||||
cp $build_path/App/AppSim $target_path/
|
||||
cp -r Data/data $target_path/
|
||||
cp -r Data/system $target_path/
|
||||
Reference in New Issue
Block a user