Skip to content

Commit

Permalink
Remove quotes from vars eched to GITHUB_ENV
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <[email protected]>
  • Loading branch information
t1m0thyj committed Nov 1, 2023
1 parent 6f2d47c commit 1522236
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/secrets/scripts/configure-cross.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

# Set environment variables needed for cross-compilation in current shell
set_env() {
echo "PKG_CONFIG_SYSROOT_DIR=\"/\"" >> $GITHUB_ENV
echo "RUSTFLAGS=\"-L $1\"" >> $GITHUB_ENV
echo "PKG_CONFIG_PATH=\"$1/pkgconfig\"" >> $GITHUB_ENV
echo "PKG_CONFIG_SYSROOT_DIR=/" >> $GITHUB_ENV
echo "RUSTFLAGS=-L $1 $RUSTFLAGS" >> $GITHUB_ENV
echo "PKG_CONFIG_PATH=$1/pkgconfig" >> $GITHUB_ENV
}

case "$1" in
Expand Down

0 comments on commit 1522236

Please sign in to comment.