Tom Willemse
34b2b9e7ff
When running `kaarvok' always add the current directory to the `load-path'. This way, as long as `kaarvok.el' is in the same directory as `kaarvok', `kaarvok.el' can always be found.
26 lines
996 B
Bash
Executable file
26 lines
996 B
Bash
Executable file
#!/bin/sh
|
|
## kaarvok --- Generate directory structures from templates
|
|
# Copyright (C) 2013 Tom Willemse <tom at ryuslash dot org>
|
|
|
|
# This file is part of kaarvok.
|
|
|
|
# kaarvok is free software: you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# kaarvok is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with kaarvok. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
if [ "${#@}" -lt 2 ]; then
|
|
echo "Usage: $0 <template name> <destination>"
|
|
exit 1
|
|
fi
|
|
|
|
/usr/bin/emacs -Q -batch -L $(dirname $0) -l kaarvok.el -eval \
|
|
"(kaarvok-create-project-from-template \"$1\" \"$2\")"
|