Skip to content

Commit

Permalink
skip some unecessary steps
Browse files Browse the repository at this point in the history
  • Loading branch information
leoschwarz committed Nov 4, 2024
1 parent 0fc861f commit 4bfc377
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions inst/rawrrassembly/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ project_folder="$1"
output_folder="$2"
work_folder="/tmp/build"

# TODO for docker container only
apt-get update && apt-get upgrade -y && apt-get install -y zip tree
# TODO for development only
#apt-get update && apt-get upgrade -y && apt-get install -y zip tree

# Checkout the deps
mkdir /tmp/build-dir && cd /tmp/build-dir
Expand All @@ -25,7 +25,8 @@ for runtime in $runtimes; do
dotnet publish --runtime "$runtime" -c Release
done

tree bin/Release/net8.0
# TODO for development only
#tree bin/Release/net8.0
mkdir -p "$output_folder"

# Export the result
Expand All @@ -37,4 +38,3 @@ for runtime in $runtimes; do
fi
cp "$source_path/rawrr$suffix" "$output_folder/rawrr-$runtime$suffix"
done

0 comments on commit 4bfc377

Please sign in to comment.