Skip to content
This repository has been archived by the owner on May 18, 2022. It is now read-only.

Commit

Permalink
dont assume bash location
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptix committed Apr 8, 2021
1 parent c5d6824 commit cb293f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion convert-to-inline.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
node node_modules/inline-source-cli/dist/index.js --compress false --attribute '' --root dist/ dist/index.html dist/index-inlined.html
echo "Starting size is $(du dist/index-inlined.html | cut -f 1)k"
for SVG in assets/*.svg; do
Expand Down
2 changes: 1 addition & 1 deletion dedupe.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Dedupe pull-stream.
sed -i 's/2.26.0/3.6.14/' node_modules/pull-async-filter/package.json
rm -rf node_modules/pull-async-filter/node_modules/pull-stream
Expand Down
2 changes: 1 addition & 1 deletion start-server.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
npm install
npm run build
pushd dist
Expand Down

0 comments on commit cb293f2

Please sign in to comment.