Compare commits

...

2 Commits

Author SHA1 Message Date
Marek Mahut
dcda342ecc use /usr/bin/env to find bash in scripts (#314) 2021-04-22 17:45:33 -04:00
Tingluo Huang
a711bd9494 add workflow_dispatch 2020-07-28 14:52:38 -04:00
11 changed files with 11 additions and 10 deletions

View File

@@ -1,6 +1,7 @@
name: Runner CI
on:
workflow_dispatch:
push:
branches:
- master

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
PACKAGERUNTIME=$1
PRECACHE=$2

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
SVC_NAME="{{SvcNameVar}}"
SVC_NAME=${SVC_NAME// /_}

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
user_id=`id -u`

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# convert SIGTERM signal to SIGINT
# for more info on how to propagate SIGTERM to a child process see: http://veithen.github.io/2014/11/16/sigterm-propagation.html

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
SVC_NAME="{{SvcNameVar}}"
SVC_NAME=${SVC_NAME// /_}

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# runner will replace key words in the template and generate a batch script to run.
# Keywords:

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
user_id=`id -u`

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
varCheckList=(
'LANG'

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Validate not sudo
user_id=`id -u`

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
###############################################################################
#