Skip to content
Snippets Groups Projects
Unverified Commit a878de6c authored by Cam Saul's avatar Cam Saul
Browse files

Fix building Docker image :wrench:

parent 3919e5bc
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
set -e
# Generate the resources/version.properties file
version() {
VERSION_INFO=$(./bin/version)
......
......@@ -19,7 +19,7 @@ if [ "$1" == clean ]; then
done
fi
for driver in `ls modules/drivers/ | perl -pe 's|/$||'`; do # strip trailing slashes if `ls` is set to include them
for driver in `ls modules/drivers/ | sed 's|/$||'`; do # strip trailing slashes if `ls` is set to include them
echo "Build: $driver"
./bin/build-driver.sh "$driver"
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment