File tree Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ cd ..
4+
5+ # lazbuild --build-all --build-mode=Release MiningVisualizer.lpi
6+
7+ # if [ $? -ge 1 ] ; then
8+ # echo "."
9+ # echo "."
10+ # echo "."
11+ # echo "compilation error"
12+ # echo "."
13+ # echo "."
14+ # echo "."
15+ # exit 1
16+ # fi
17+
18+ rm -r Release/MiningVisualizer/*
19+
20+ cp MiningVisualizer Release/MiningVisualizer
21+ res=$?
22+
23+ cp -R WebApp Release/MiningVisualizer
24+ res=$(( res + $? ))
25+
26+ cp -R SSL-Certs Release/MiningVisualizer
27+ res=$(( res + $? ))
28+
29+
30+ # tar -czf Release/MiningVisualizer-vxxx-linux.tar.gz --directory=Release MiningVisualizer
31+ # res=$((res + $?))
32+
33+ # if [ "$res" -ge 1 ] ; then
34+ # echo "."
35+ # echo "."
36+ # echo "."
37+ # echo "ERRORS WERE ENCOUNTERED!!!"
38+ # echo "."
39+ # echo "."
40+ # echo "."
41+ # exit 1
42+ # fi
43+
44+ # echo "."
45+ # echo "."
46+ # echo "."
47+ # echo "script completed successfully"
48+ # echo "."
49+ # echo "."
50+ # echo "."
File renamed without changes.
You can’t perform that action at this time.
0 commit comments