mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 08:26:16 -04:00
bin: replace double backticks (``) with $()
This has been the recommended way of launching subshells for ages, and is easier to type and on the eye. For a quick reference, see: https://unix.stackexchange.com/questions/5778/whats-the-difference-between-stuff-and-stuff#5782
This commit is contained in:
parent
1ad6e9c288
commit
a181ea8fbe
8 changed files with 11 additions and 11 deletions
|
@ -3,7 +3,7 @@
|
|||
NODE_VERSION="10.18.0"
|
||||
|
||||
#Move to the folder where ep-lite is installed
|
||||
cd `dirname $0`
|
||||
cd $(dirname $0)
|
||||
|
||||
#Was this script started in the bin folder? if yes move out
|
||||
if [ -d "../bin" ]; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue