Browse Source

Slight update for Python scripts

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

5
tools/make-firefox-meta.py

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

Loading…
Cancel
Save