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

Merge pull request #9227 from metabase/fix-docker-image-build

Fix building Docker image :wrench:
parents 3919e5bc a878de6c
Branches
Tags
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.
Please register or to comment