Browse Source

Slight update for Python scripts

pull/2/head
Deathamns 10 years ago
committed by gorhill
parent
commit
6e40b641a2
  1. 3
      tools/make-firefox-meta.py

3
tools/make-firefox-meta.py

@ -3,10 +3,11 @@
import os
import json
import sys
from io import open
from shutil import rmtree
from collections import OrderedDict
if not sys.argv[1]:
if len(sys.argv) == 1 or not sys.argv[1]:
raise SystemExit('Build dir missing.')

Loading…
Cancel
Save