mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-08 07:51:43 +03:00
11 lines
193 B
Bash
Executable File
11 lines
193 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
FILE=~/.atom/packages/catala_fr
|
|
SCRIPT=`realpath $0`
|
|
SCRIPTPATH=`dirname $SCRIPT`
|
|
|
|
if [ ! -L "$FILE" ]; then
|
|
echo "Creating link"
|
|
ln -s -f $SCRIPTPATH/atom "$FILE"
|
|
fi
|