Merge pull request #400 from giovannipizzi/fix-399

Fix relative location of the start script
pull/410/head
Tim Head 2018-09-14 21:01:38 +02:00 zatwierdzone przez GitHub
commit 9fb2a40a2b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -543,7 +543,7 @@ class BaseImage(BuildPack):
return []
def get_start_script(self):
start = self.binder_path('start')
start = self.binder_path('./start')
if os.path.exists(start):
return start
return None