Compare commits

..

1 Commits

Author SHA1 Message Date
Michiel Hazelhof
d4c4d59eed
Merge be9d7396dc into 29add24126 2025-08-26 12:17:29 +02:00
2 changed files with 0 additions and 6 deletions

View File

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

View File

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