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!
소스 검색

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

master
부모
커밋
a72fcab5dc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      focker/compose.py

+ 1
- 1
focker/compose.py 파일 보기

@@ -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)


불러오는 중...
취소
저장