Merge pull request #181 from nmih/master

Fix indentation causing only last line of apt.txt to be parsed
pull/183/head
Tim Head 2018-01-03 15:44:49 +01:00 zatwierdzone przez GitHub
commit 09845ea5ee
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
3 zmienionych plików z 8 dodań i 1 usunięć

Wyświetl plik

@ -443,7 +443,7 @@ class BaseImage(BuildPack):
if not re.match(r"^[a-z0-9.+-]+", package):
raise ValueError("Found invalid package name {} in "
"apt.txt".format(package))
extra_apt_packages.append(package)
extra_apt_packages.append(package)
assemble_scripts.append((
'root',

Wyświetl plik

@ -1,3 +1,8 @@
# testing to skip comments in this file
gfortran
# testing to see if all packages get installed
unp
byacc

Wyświetl plik

@ -1,3 +1,5 @@
#!/bin/bash
set -euo pipefail
which gfortran
which unp
which byacc