Skip to content

Commit

Permalink
fixed shebang in installation scripts (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
SoheilKhodayari committed May 23, 2022
1 parent 7c0e71d commit fad37af
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions installation/install_dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env bash

# install python3 dependencies
pip3 install -r requirements.txt

Expand Down
3 changes: 2 additions & 1 deletion installation/linux_neo4j_installation.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
bash
#!/usr/bin/env bash

wget -O - https://debian.neo4j.org/neotechnology.gpg.key | sudo apt-key add -
echo 'deb https://debian.neo4j.org/repo stable/' | sudo tee -a /etc/apt/sources.list.d/neo4j.list
sudo apt-get update
Expand Down
1 change: 1 addition & 0 deletions installation/macos_neo4j_installation.sh
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
#!/usr/bin/env bash
brew install ./neo4j.rb

0 comments on commit fad37af

Please sign in to comment.