diff options
author | Thomas Kahle <tomka@gentoo.org> | 2013-04-12 19:25:17 +0200 |
---|---|---|
committer | Thomas Kahle <tomka@gentoo.org> | 2013-04-12 19:25:17 +0200 |
commit | 89bbabd5133fd334a1da16f25b5d7a87dd3992b1 (patch) | |
tree | ac2d10189d45564a4782989bc7c5c4d89b4b0e71 /templates | |
parent | Merge pull request #8 from johu/template (diff) | |
download | tatt-89bbabd5133fd334a1da16f25b5d7a87dd3992b1.tar.gz tatt-89bbabd5133fd334a1da16f25b5d7a87dd3992b1.tar.bz2 tatt-89bbabd5133fd334a1da16f25b5d7a87dd3992b1.zip |
The templates use bash syntax, so change the shebang to call bash (issue #9)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/cleanup | 2 | ||||
-rw-r--r-- | templates/commit-header | 2 | ||||
-rw-r--r-- | templates/revdep-header | 2 | ||||
-rw-r--r-- | templates/use-header | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/templates/cleanup b/templates/cleanup index d7d4860..fb483df 100644 --- a/templates/cleanup +++ b/templates/cleanup @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash ## Clean-up the keywordfile sed -i "/@@CPV@@/d" @@KEYWORDFILE@@ diff --git a/templates/commit-header b/templates/commit-header index d46d596..2fd5aef 100644 --- a/templates/commit-header +++ b/templates/commit-header @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # CVS Stabeling for @@JOB@@ # This is the place to move to the right location: diff --git a/templates/revdep-header b/templates/revdep-header index 87752a1..e1ede27 100644 --- a/templates/revdep-header +++ b/templates/revdep-header @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Reverse dependency testing for @@JOB@@ trap "echo 'signal captured, exiting the entire script...'; exit" SIGHUP SIGINT SIGTERM diff --git a/templates/use-header b/templates/use-header index 831402e..cbfffd4 100644 --- a/templates/use-header +++ b/templates/use-header @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash #USE-Flag build tests for job @@JOB@@ trap "echo 'signal captured, exiting the entire script...'; exit" SIGHUP SIGINT SIGTERM |