summaryrefslogtreecommitdiff
path: root/test/configure_app.sh
blob: e0a8f2eb030712cbbb8f7902fb4d3418f8a02834 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/sh

. ./scorsh_functions


### create spool directory
mkdir "${SCORSH_APP}/spool"
check_fatal "[ -$? -eq 0 ]" $0 "create_spool_folder"


### configure the remote to be used with scorsh
cd ${REMOTE_REPO}
SPOOL_DIR="${SCORSH_APP}/spool"
git config -f scorsh scorsh.spooldir $(realpath "${SPOOL_DIR}")
ret=$(git config -f scorsh scorsh.spooldir)
check_fatal "[ \"${ret}\" = \"${SPOOL_DIR}\" ]" $0 "config_remote_repo"
cd - > /dev/null
###


### copy the post-receive hook in REMOTE_REPO/hooks
cp ${SCORSH_REPO}/hooks/post-receive ${REMOTE_REPO}/hooks/
check_fatal "[ $? -eq 0 ]" $0 "copy_post-receive_hook"


### copy the scorshd program under SCORSH_APP
cp ${SCORSH_REPO}/scorshd ${SCORSH_APP}
check_fatal "[ $? -eq 0 ]" $0 "copy_scorshd"

### copy the files under "examples" into SCORSH_APP
cp -a ${SCORSH_REPO}/examples/* ${SCORSH_APP}
check_fatal "[ $? -eq 0 ]" $0 "copy_scorsh_config"




##check_fatal "[ 1 -eq 0 ]" $0 "aborting_on_purpose"

return_results