Skip to content

Commit

Permalink
refactor: Secure shell script
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgate committed Jul 10, 2024
1 parent 2350fa4 commit 43462de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example/build_flex.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ git clone \
flex-2.5.39

# Run `autogen`.
cd flex-2.5.39
cd flex-2.5.39 || exit
./autogen.sh

# Configure flex.
./configure --prefix=$(dirname $(pwd))/flex
./configure --prefix="$(dirname "$(pwd)")/flex"

# Build `libcompat.la`.
cd lib
cd lib || exit
make libcompat.la

# Build & install flex.
Expand Down

0 comments on commit 43462de

Please sign in to comment.