Skip to content

Commit 26c11ba

Browse files
committed
updated index.
1 parent e9e6877 commit 26c11ba

9 files changed

+24
-2
lines changed

.index/_8.cfs

229 KB
Binary file not shown.

.index/_g.cfs

-224 KB
Binary file not shown.
489 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#Fri Nov 01 10:07:11 KST 2013
1+
#Fri Nov 01 10:28:39 KST 2013
22
nexus.index.chain-id=1383265801149
3-
nexus.index.timestamp=20131101010711.111 +0000
3+
nexus.index.timestamp=20131101012839.468 +0000
44
nexus.index.id=rosjava_mvn_repo
55
nexus.index.last-incremental=0

.index/segments.gen

0 Bytes
Binary file not shown.

.index/segments_9

58 Bytes
Binary file not shown.

.index/segments_g

-58 Bytes
Binary file not shown.

.index/timestamp

0 Bytes
Binary file not shown.

update_index

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,25 @@
44

55
java -jar nexus-indexer-3.0.4-cli.jar -r . -i ./.index -d ./.index -n "rosjava_mvn_repo"
66

7+
for f in `git ls-files -o`
8+
do
9+
git add ${f}
10+
done
11+
12+
echo
13+
echo -en "${yellow}Do you want to commit the new index [y/N]${reset}?"
14+
read commit
15+
case $commit in
16+
[Yy]* ) git commit -a -m "updated index.";;
17+
* ) exit 0;;
18+
esac
19+
20+
echo
21+
echo -en "${yellow}Push to the github repository?[y/N]${reset}?"
22+
read push
23+
case $push in
24+
[Yy]* ) git push;;
25+
* ) exit 0;;
26+
esac
27+
28+

0 commit comments

Comments
 (0)