log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial Hosting
>
luan
annotate backup/classpath.sh @ 2029:
5fa5a7efc936
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
merge
author
Violet7
date
Thu, 30 Oct 2025 21:25:37 -0700
parents
45eaaf5146f3
children
Ignore whitespace changes -
Everywhere:
Within whitespace:
At end of lines:
rev
line source
1693
45eaaf5146f3
add backup autostart
Vadim Filimonov <fffilimonov@yandex.ru>
parents:
diff
changeset
1
DIR=`pwd`;
45eaaf5146f3
add backup autostart
Vadim Filimonov <fffilimonov@yandex.ru>
parents:
diff
changeset
2
CLASSPATH=;
45eaaf5146f3
add backup autostart
Vadim Filimonov <fffilimonov@yandex.ru>
parents:
diff
changeset
3
45eaaf5146f3
add backup autostart
Vadim Filimonov <fffilimonov@yandex.ru>
parents:
diff
changeset
4
for file in ${DIR}/../build/luan/jars/*.jar; do
45eaaf5146f3
add backup autostart
Vadim Filimonov <fffilimonov@yandex.ru>
parents:
diff
changeset
5
CLASSPATH=${CLASSPATH}:${file};
45eaaf5146f3
add backup autostart
Vadim Filimonov <fffilimonov@yandex.ru>
parents:
diff
changeset
6
done
45eaaf5146f3
add backup autostart
Vadim Filimonov <fffilimonov@yandex.ru>
parents:
diff
changeset
7
export CLASSPATH