File: mockPublish

package info (click to toggle)
node-gulp-sourcemaps 3.0.0%2B~cs4.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid
  • size: 812 kB
  • sloc: javascript: 3,584; sh: 15; makefile: 2
file content (10 lines) | stat: -rwxr-xr-x 111 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
set -e
set -o pipefail

mkdir -p ./tmp
npm pack
mv *.tgz ./tmp
tar xvzf tmp/*.tgz -C ./tmp

exit 0