File: .post.sh

package info (click to toggle)
dygraphs 2.2.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,340 kB
  • sloc: javascript: 24,842; sh: 800; python: 581; makefile: 45
file content (10 lines) | stat: -rw-r--r-- 230 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

echo ::group::Check whether .pages.sh failed anywhere
state=$(cat .post.state || echo state-file-missing)
if test -n "$state"; then
	echo "E: .pages.sh failed in: $state"
	exit 1
fi
echo "I: nope, ok"
echo ::endgroup::