Skip to content

Commit

Permalink
Move / into dist variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jkintscher committed Dec 17, 2015
1 parent f24a093 commit 1139dbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ test_files := test/ti-auth_test.js $(wildcard test/lib/*_test.js)
test_build := $(test_files:%.js=build/%.js)
tests := build/tests.js

dist := dist
dist := dist/

.PHONY: all watch test clean dist

Expand All @@ -34,9 +34,9 @@ test: all
dist: $(app)
mkdir -p $(dist)
cp $< $(dist)
uglifyjs $< -o $(dist)/ti-auth.min.js \
uglifyjs $< -o $(dist)ti-auth.min.js \
--mangle \
--source-map $(dist)/ti-auth.min.js.source
--source-map $(dist)ti-auth.min.js.source

clean:
rm -rf build

0 comments on commit 1139dbb

Please sign in to comment.