mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-04 11:30:14 -05:00
62a937fe93
Apparently pushd and popd aren't in whatever very-limited shell travis uses in its build environment. So, scripts using them (and others for safety) should she-bang /bin/bash instead of /bin/sh
8 lines
82 B
Bash
Executable File
8 lines
82 B
Bash
Executable File
#!/bin/bash
|
|
pushd ../../js
|
|
npm install
|
|
npm run build
|
|
./link.sh
|
|
popd
|
|
npm link noms
|