Guess we don't *need* py 3.6...

This commit is contained in:
K. Lange 2018-07-19 09:38:20 +09:00
parent 8f2c0b60fa
commit 6e9aa62460
2 changed files with 4 additions and 4 deletions

View File

@ -2,8 +2,8 @@
RET=0
if ! which python3.6 >/dev/null; then
echo "python3.6 is required to run build tools (and eventually cross-compile python3.6)"
if ! which python3 >/dev/null; then
echo "python3 is required to run build tools - 3.6 is recommended as it is needed to cross-compile itself"
RET=1
fi

View File

@ -11,11 +11,11 @@ with open('util/devtable','w') as devtable:
# Now add user home directories
for user_details in [('local',1000)]:
user, uid = user_details
for path in glob.glob(f'./base/home/{user}/**',recursive=True):
for path in glob.glob('./base/home/{user}/**'.format(user=user),recursive=True):
p = Path(path)
path_mod = path.replace('./base','')
path_type = 'd' if p.is_dir() else 'f'
st = os.stat(path)
mode = '{:o}'.format(st.st_mode & 0o7777)
devtable.write(f'{path_mod} {path_type} {mode} {uid} {uid} - - - - -\n')
devtable.write('{path_mod} {path_type} {mode} {uid} {uid} - - - - -\n'.format(path_mod=path_mod,path_type=path_type,mode=mode,uid=uid))