Skip to content

Commit 82149ce

Browse files
committed
fix install_corelib.sh for mac
1 parent 9b50979 commit 82149ce

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

install_corelib.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
#!/bin/bash
22

33
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
4-
echo $SCRIPT_DIR
4+
#echo $SCRIPT_DIR
55

6-
mkdir -p ~/.local/share/pipes/
6+
INSTALL_DIR=~/.local/share/pipes/
7+
mkdir -p $INSTALL_DIR
78

8-
ln -sfT "${SCRIPT_DIR}/pipes_programs/corelib" ~/.local/share/pipes/core
9+
rm -f ${INSTALL_DIR}/core
10+
11+
ln -s "${SCRIPT_DIR}/pipes_programs/corelib" ${INSTALL_DIR}/core
912

1013

0 commit comments

Comments
 (0)