Browse Source

bash shebang fix

master
Juni Kim 9 months ago
parent
commit
12c7958af1
  1. 2
      templates/java_template/test.sh
  2. 2
      templates/minjava_template/test.sh
  3. 2
      templates/python_template/test.sh
  4. 2
      templates/ruby_template/test.sh
  5. 2
      templates/selfio_template/test.sh
  6. 3
      templates/std_template/test.sh

2
templates/java_template/test.sh

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
PROG="Main" PROG="Main"
# compilation stage. # compilation stage.

2
templates/minjava_template/test.sh

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
PROG="Main" PROG="Main"
# compilation stage. # compilation stage.

2
templates/python_template/test.sh

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
PROG="main" PROG="main"
# diffing program output against actual output. # diffing program output against actual output.

2
templates/ruby_template/test.sh

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
PROG="main" PROG="main"
# diffing program output against actual output. # diffing program output against actual output.

2
templates/selfio_template/test.sh

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
PROG="Main" PROG="Main"
# compilation stage. # compilation stage.

3
templates/std_template/test.sh

@ -1,4 +1,5 @@
#!/bin/bash
#!/usr/bin/env bash
PROG="Main"
PROG="Main" PROG="Main"
[ ! -f *.in ] && echo -e "No input found.\n" && exit 127 [ ! -f *.in ] && echo -e "No input found.\n" && exit 127

Loading…
Cancel
Save