Skip to content

Commit ceff01a

Browse files
authored
Merge pull request #2 from SuperuserLabs/dev/creator-donor-doors
Basic doors for creators and donors
2 parents 95439f1 + 90c3e42 commit ceff01a

File tree

6 files changed

+1588
-56
lines changed

6 files changed

+1588
-56
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@ build: build-superuser build-thankful
1010
build-superuser:
1111
$(eval DEST := "build-superuser")
1212
npm run pug -- -o ${DEST} $(PUG_OPTS) index.pug
13-
npm run pug -- -o ${DEST}/thankful $(PUG_OPTS) thankful/index.pug
13+
npm run pug -- -o ${DEST}/thankful $(PUG_OPTS) thankful
1414
npm run sass -- scss/index.scss ${DEST}/index.css
1515
cp -r media ${DEST}/
1616

1717
build-thankful:
1818
$(eval DEST := "build-thankful")
1919
mkdir -p ${DEST}
2020
echo "getthankful.io" > ${DEST}/CNAME
21-
npm run pug -- -o ${DEST} $(PUG_OPTS) thankful/index.pug
21+
npm run pug -- -o ${DEST} $(PUG_OPTS) thankful
2222
npm run sass -- scss/index.scss ${DEST}/index.css
2323
cp -r media ${DEST}/
2424

2525
build-dev:
2626
$(eval DEST := "build-dev")
2727
DEV=true npm run pug -- -o ${DEST} $(PUG_OPTS) index.pug
28-
DEV=true npm run pug -- -o ${DEST}/thankful $(PUG_OPTS) thankful/index.pug
28+
DEV=true npm run pug -- -o ${DEST}/thankful $(PUG_OPTS) thankful
2929
npm run sass -- scss/index.scss ${DEST}/index.css
3030
cp -r media ${DEST}/
3131

0 commit comments

Comments
 (0)