Skip to content

Commit

Permalink
examples demo scripts shebangs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
timurhai committed Jan 29, 2021
1 parent 3fd63e1 commit e4cd994
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/test scripts/demo/demo.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/bash

if [ -z $CGRU_LOCATION ]; then
pushd ../../.. >> /dev/null
Expand Down
2 changes: 1 addition & 1 deletion examples/test scripts/demo/emulate.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import os
Expand Down
2 changes: 1 addition & 1 deletion examples/test scripts/demo/emulate.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/bash

script="$PWD/emulate.py"

Expand Down
2 changes: 1 addition & 1 deletion examples/test scripts/demo/emulate_renders.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import json
Expand Down
2 changes: 1 addition & 1 deletion examples/test scripts/demo/emulate_renders.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/bash

script="$PWD/emulate_renders.py"

Expand Down
2 changes: 1 addition & 1 deletion examples/test scripts/demo/hardcore.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/bash

script="$PWD/emulate.py"

Expand Down
2 changes: 1 addition & 1 deletion examples/test scripts/demo/utf8rus.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/bash

if [ -z $CGRU_LOCATION ]; then
pwd=$PWD
Expand Down

0 comments on commit e4cd994

Please sign in to comment.