| 39 | | echo "does not exists. Please rectify this situation. (You could try 'mkdri -p $ASTRUNDIR'" |
|---|
| 40 | | echo "and then re-run install_amp" |
|---|
| 41 | | exit; |
|---|
| | 39 | echo "does not exists. Attempting to create it with: 'mkdir -p $ASTRUNDIR'" |
|---|
| | 40 | echo |
|---|
| | 41 | mkdir -p $ASTRUNDIR |
|---|
| | 42 | RET=$? |
|---|
| | 43 | if [ $RET != 0 ] |
|---|
| | 44 | then |
|---|
| | 45 | echo "**** ERROR: COULD NOT CREATE $ASTRUNDIR ****" |
|---|
| | 46 | echo "Attempt to execute 'mkdir -p $ASTRUNDIR' failed with an exit code of $RET" |
|---|
| | 47 | echo "You must create this directory and the try again." |
|---|
| | 48 | exit |
|---|
| | 49 | fi |
|---|