docker: Fix erroneous sys_ variable names. (#52)

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-06-15 05:28:12 +00:00
parent 1645518859
commit ee6524b803

View File

@@ -34,15 +34,15 @@ if test ! -z "$rust_toolchain"; then
fi fi
if test ! -z "$sys_name"; then if test ! -z "$sys_name"; then
env_sys_name="[\"${sys_name}\"]" env_sys_names="[\"${sys_name}\"]"
fi fi
if test ! -z "$sys_target"; then if test ! -z "$sys_target"; then
env_sys_target="[\"${sys_target}\"]" env_sys_targets="[\"${sys_target}\"]"
fi fi
if test ! -z "$sys_version"; then if test ! -z "$sys_version"; then
env_sys_version="[\"${sys_version}\"]" env_sys_versions="[\"${sys_version}\"]"
fi fi
set -a set -a
@@ -60,7 +60,7 @@ runner_name=$(echo $RUNNER_NAME | cut -d"." -f1)
runner_num=$(echo $RUNNER_NAME | cut -d"." -f2) runner_num=$(echo $RUNNER_NAME | cut -d"." -f2)
builder_name="${GITHUB_ACTOR:-owo}" builder_name="${GITHUB_ACTOR:-owo}"
toolchain_toml="$docker_dir/../rust-toolchain.toml" toolchain_toml="$docker_dir/../rust-toolchain.toml"
rust_msrv=$(grep "channel = " $toolchain_toml | cut -d'=' -f2 | sed 's/\s"\|"$//g') rust_msrv=$(grep "channel = " "$toolchain_toml" | cut -d'=' -f2 | sed 's/\s"\|"$//g')
rocksdb_opt_level=3 rocksdb_opt_level=3
rocksdb_portable=1 rocksdb_portable=1
git_checkout="HEAD" git_checkout="HEAD"