File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ ENV NODE_CHECKSUM 3fc638727974262b4f65a6b1b43c22fb2d80671cdcb50e1237e0b05d1330aa
1313
1414ENV GPG_VERSION 2.4.5_20240307
1515
16+ ENV TTT 1
17+
1618RUN Invoke-WebRequest $('https://www.gnupg.org/ftp/gcrypt/binary/gnupg-w32-{0}.exe' -f $env:GPG_VERSION) -OutFile 'gpg-installer.exe' ; \
1719 Start-Process -FilePath 'gpg-installer.exe' -ArgumentList '/S' -Wait; \
1820 Remove-Item gpg-installer.exe -Force; \
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ const getNodeVersionDirs = (base) => getChildDirectories(base)
2424
2525// Returns the paths of Dockerfiles that are at: base/*/Dockerfile
2626const getDockerfilesInChildDirs = ( base ) => getChildDirectories ( base )
27- . filter ( ( directory ) => directory . isDirectory ( ) && ! windowsDirRegex . test ( directory . name ) )
27+ . filter ( ( directory ) => ! windowsDirRegex . test ( path . basename ( directory ) ) )
2828 // Test print the directories
2929 . map ( ( childDir ) => {
3030 console . log ( childDir ) ;
You can’t perform that action at this time.
0 commit comments