IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Parcourir la source

Fix for passing focker-compose.yml without any leading path components.

master
Stanislaw Adaszewski il y a 3 ans
Parent
révision
a72fcab5dc
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      focker/compose.py

+ 1
- 1
focker/compose.py Voir le fichier

@@ -168,7 +168,7 @@ def stop_jails(spec):
def command_compose_build(args):
if not os.path.exists(args.filename):
raise ValueError('File not found: ' + args.filename)
path, _ = os.path.split(args.filename)
path, _ = os.path.split(os.path.abspath(args.filename))
print('path:', path)
with open(args.filename, 'r') as f:
spec = yaml.safe_load(f)


Chargement…
Annuler
Enregistrer