Skip to content

Commit 446f67a

Browse files
authored
Fix mimimal docker builds (#278)
Fixes #277
1 parent 30caf7f commit 446f67a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.docker/scripts/install_devtools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -ex
33

44
# Installing Devtools
5-
if [[ ${TAG_SUFFIX} != "minimal" ]]; then
5+
if [[ ${TAG_SUFFIX} != "-minimal" ]]; then
66
echo "Installing devtools"
77
apk add --no-cache --virtual devtools build-base linux-headers udev python python3
88
else

docker-custom/scripts/install_devtools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -ex
33

44
# Installing Devtools
5-
if [[ ${TAG_SUFFIX} != "minimal" ]]; then
5+
if [[ ${TAG_SUFFIX} != "-minimal" ]]; then
66
echo "Installing devtools"
77
apk add --no-cache --virtual devtools build-base linux-headers udev python python3
88
else

0 commit comments

Comments
 (0)