소스 검색

fixed install order

Gamaliel Espinoza 7 년 전
부모
커밋
023ee0508c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      configure.py

+ 2 - 2
configure.py

@@ -71,7 +71,7 @@ if not os.path.isdir(box_path):
 if not os.path.isfile(db_path):
     print('** Preparing local database')
     sp.call(['fourier', 'db', 'setup'])
+    os.chown(db_path, user.pw_uid, user.pw_gid)
     print('** Applying migrations')
     sp.call(['fourier', 'db', 'migrate'])
-    print('** Creating database')
-    os.chown(db_path, user.pw_uid, user.pw_gid)
+    print('** Creating database')