15 lines
344 B
Bash
15 lines
344 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
{{- if eq .hosttype "work" }}
|
|
if [ ! -d $HOME/notebook ] ; then
|
|
jj git clone ssh://git@git.thermokar.st/thermokarst/klaviyo-notebook $HOME/notebook
|
|
fi
|
|
{{- end }}
|
|
|
|
{{- if eq .hosttype "personal" }}
|
|
if [ ! -d $HOME/notebook ] ; then
|
|
jj git clone ssh://git@git.thermokar.st/thermokarst/notebook $HOME/notebook
|
|
fi
|
|
{{- end }}
|