File: upstream

package info (click to toggle)
node-combined-stream 1.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 212 kB
  • sloc: makefile: 14; sh: 14
file content (19 lines) | stat: -rwxr-xr-x 291 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

TEMP=${ADTTMP:-${TMPDIR:-/tmp}}

TDIR=$(mktemp -d $TEMP/smokeXXXXXX)

PDIR=`pwd`

cp -a test $TDIR
cd $TDIR
ln -s /usr/lib/nodejs/combined-stream/package.json
ln -s /usr/lib/nodejs/combined-stream/lib

ls -l lib/

for file in test/integration/*; do
	echo $file
	nodejs $file
done