Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit 6bdef9d

Browse files
committed
fixed installer log dir and README
1 parent bcb1bfd commit 6bdef9d

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

service-mapper/README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Start with:
3131
```
3232
sudo apt-get update
3333
34-
sudo apt-get install -y make g++ ruby bundler zlib1g zlib1g-dev
34+
sudo apt-get install -y make g++ ruby bundler zlib1g zlib1g-dev git
3535
```
3636

3737
which updates the vm OS and installs the required dependencies.
@@ -60,7 +60,7 @@ sudo ldconfig
6060

6161
#### Using the installer script
6262

63-
After the source has been cloned from the repository (this may require the installation of the git package), you can run
63+
After the source has been cloned from the repository, you can run
6464

6565
```
6666
./install.sh
@@ -96,6 +96,13 @@ Eventually, for solving any issue with gem dependencies, try running:
9696
gem install bundler
9797
```
9898

99+
Also, error may be thrown in case of missing TeNOR-Mapper/log directory. It can be fixed with:
100+
101+
```
102+
mkdir TeNOR-Mapper/log
103+
104+
```
105+
99106

100107
### API Documentation
101108
A wiki page will be available shortly.

service-mapper/install.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,11 @@ then
205205
exit 1
206206
fi
207207

208+
# Create log directory
209+
if [ ! -d "$HOME/TeNOR-Mapper/log" ]; then
210+
mkdir $HOME/TeNOR-Mapper/log
211+
fi
212+
208213
echo
209214
echo
210215
echo

0 commit comments

Comments
 (0)