Skip to content

Commit

Permalink
chore: fix out_dir usage in upload-index-json.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed Sep 28, 2018
1 parent 2adb44a commit 504581e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions script/upload-index-json.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@
import urllib2

from lib.config import s3_config
from lib.util import s3put, scoped_cwd, safe_mkdir
from lib.util import s3put, scoped_cwd, safe_mkdir, get_out_dir

# TODO: Update this entire file to point at the correct file names in the out
# directory
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
OUT_DIR = os.path.join(SOURCE_ROOT, 'out', 'D')
OUT_DIR = get_out_dir()

BASE_URL = 'https://electron-metadumper.herokuapp.com/?version='

Expand Down

0 comments on commit 504581e

Please sign in to comment.