File: cmd_make_package.in

package info (click to toggle)
paexec 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 904 kB
  • sloc: sh: 3,435; ansic: 1,959; makefile: 174; pascal: 19
file content (17 lines) | stat: -rwxr-xr-x 236 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!@awk@ -f

{
	# Read package names one-by-one

	# Suppose we built the package...
	print $0

	# ...succesfully
	print "success"

	# End of task marker, empty line by default
	print ""

	# In the end, stdout must be flushed
	fflush()
}