Compare commits

...

2 Commits

Author SHA1 Message Date
Michiel Hazelhof
8bcf9b7699
Merge 594d1bd4ab into 29add24126 2025-08-26 22:29:38 +02:00
Michiel Hazelhof
594d1bd4ab
Detect buildx 2025-08-26 14:29:39 +02:00
2 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,9 @@
$ErrorActionPreference = 'Stop'
$PSNativeCommandUseErrorActionPreference = $true
# detect buildx, ErrorActionPreference will ensure the script stops execution if not found
docker buildx version
# define temporary directory
$tempdirectory = "$pwd\temp"
# define services to patch

View File

@ -1,6 +1,9 @@
#!/bin/bash
set -e
# detect buildx, set -e will ensure the script stops execution if not found
docker buildx version
# define temporary directory
TEMPDIRECTORY="$PWD/temp"