better error on missing input files, fixes #1930

This commit is contained in:
Alon Zakai 2013-12-25 12:21:57 -08:00
Родитель fda1fc2a3e
Коммит 2dc5962c8b
1 изменённых файлов: 1 добавлений и 1 удалений

2
emcc
Просмотреть файл

@ -1065,7 +1065,7 @@ try:
if not arg.startswith('-'):
if not os.path.exists(arg):
logging.error(arg + ': No such file or directory')
logging.error('%s: No such file or directory ("%s" was expected to be an input file, based on the commandline arguments provided)' % (arg, arg))
exit(1)
arg_ending = filename_type_ending(arg)