File: add-shebang.patch

package info (click to toggle)
python-opcua 0.98.6-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 13,416 kB
  • sloc: xml: 100,106; python: 48,535; makefile: 168; sh: 7
file content (13 lines) | stat: -rw-r--r-- 469 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
Description: add shebang to example shell script
Author: W. Martin Borgert <debacle@debian.org>
Origin: vendor
Last-Update: 2018-03-11
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/examples/generate_certificate.sh
+++ b/examples/generate_certificate.sh
@@ -1,2 +1,4 @@
+#!/bin/sh
+
 openssl req -x509 -newkey rsa:2048 -keyout my_private_key.pem -out my_cert.pem -days 355 -nodes
 openssl x509 -outform der -in my_cert.pem -out my_cert.der