File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 1111fi
1212
1313# these are temporary file we create, so in a tmpdir
14- mkdir BuildOutput
14+ build_output_path=$( mktemp -d) /BuildOutput
15+ mkdir -p $build_output_path
1516manifest_path=$( pwd) /manifest.vdf
1617
1718echo " "
@@ -87,7 +88,7 @@ cat << EOF > "manifest.vdf"
8788{
8889 "appid" "$appId "
8990 "desc" "$buildDescription "
90- "buildoutput" "BuildOutput "
91+ "buildoutput" "$build_output_path "
9192 "contentroot" "$contentroot "
9293 "setlive" "$releaseBranch "
9394
@@ -194,9 +195,9 @@ steamcmd +login "$steam_username" +run_app_build "$manifest_path" +quit || (
194195 echo " # Output #"
195196 echo " #################################"
196197 echo " "
197- ls -Ralph BuildOutput
198+ ls -Ralph $build_output_path
198199
199- for f in BuildOutput /* .log; do
200+ for f in $build_output_path /* .log; do
200201 echo " ######## $f "
201202 cat " $f "
202203 echo
You can’t perform that action at this time.
0 commit comments