Skip to content

Commit 060017e

Browse files
committed
[scripts] Fix permission error for jver.sh
1 parent c4f7ce8 commit 060017e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e
33

44
cd "$(dirname ${BASH_SOURCE[0]})"
55
source config.sh
6-
source jver.sh
6+
source /tmp/jver.sh
77

88
if [ "$SFLT_NEEDED" == "true" ]; then
99
echo "[BUILD] Building softfloat support"

scripts/fetch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ if [ ! -d "$JDKDIR" ]; then
3535
fi
3636

3737
echo "[FETCH] Java version string: $JAVA_VERSION"
38-
echo -e "#!/bin/bash\nJAVA_VERSION=\"$JAVA_VERSION\"" >"$SCRIPTDIR/jver.sh"
38+
echo -e "#!/bin/bash\nJAVA_VERSION=\"$JAVA_VERSION\"" >"/tmp/jver.sh"
3939

4040
# apply the EV3-specific patches
4141
echo "[FETCH] Patching the source tree"

0 commit comments

Comments
 (0)