mirror of
https://github.com/org-roam/org-roam
synced 2025-08-01 12:17:21 -05:00
12 lines
369 B
Bash
Executable File
12 lines
369 B
Bash
Executable File
#! /bin/sh
|
|
set -e
|
|
|
|
ELDEV_BIN_DIR=~/.local/bin
|
|
|
|
# `$GITHUB_PATH' is a magic file which contents is translated to environment variable `$PATH'.
|
|
echo "$ELDEV_BIN_DIR" >> $GITHUB_PATH
|
|
|
|
mkdir -p $ELDEV_BIN_DIR
|
|
curl -fsSL https://raw.githubusercontent.com/doublep/eldev/f111d19cda305e5e8fcb70a5675b87173041cb68/bin/eldev > $ELDEV_BIN_DIR/eldev
|
|
chmod a+x $ELDEV_BIN_DIR/eldev
|