File: shebang_for_executable.diff

package info (click to toggle)
libgnatcoll 18-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,068 kB
  • sloc: ada: 40,393; python: 354; ansic: 310; makefile: 245; sh: 31
file content (14 lines) | stat: -rw-r--r-- 422 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: add shebang for an executable script
 The executable shell script examples/library/build.sh is run by
 testsuite/sql/__init__.py, but may be run manually as an example.
Author: Nicolas Boulenguez <nicolas@debian.org>
Forwarded: no

--- a/examples/library/build.sh
+++ b/examples/library/build.sh
@@ -1,3 +1,5 @@
+#!/bin/sh
+
 cd obj
 
 # Create the database from the schema (remove the old one, just in case)