-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
cmal
authored and
cmal
committed
Sep 1, 2021
1 parent
23b6545
commit 7675de1
Showing
4 changed files
with
52 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#! /bin/sh -x -u -e | ||
# | ||
# Get latest version of org-mode in ~/git/orgmode.org/org-mode | ||
# | ||
|
||
WHERE="${HOME}/.emacs.d/site-lisp" | ||
mkdir -p ${WHERE} | ||
cd ${WHERE} | ||
|
||
# pull for first time if we don't have it | ||
|
||
if [ ! -d ${WHERE}/org ]; then | ||
git clone [email protected]:cmal/org-mode.git org | ||
else | ||
# get updates, if any | ||
cd ${WHERE}/org | ||
git pull | ||
fi | ||
|
||
# build the autoloads | ||
cd ${WHERE}/org | ||
make | ||
make autoloads | ||
|
||
# Add to .emacs, .emacs.d/init.el, whatever... | ||
# | ||
#(add-to-list 'load-path "~/git/orgmode.org/org-mode/lisp/") | ||
#(add-to-list 'load-path "~/elisp/orgmodeorg/org-mode/contrib/lisp/" t) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule org
updated
from 1b74ae to 366444