mirror of
https://github.com/owncloudarchive/contacts.git
synced 2024-11-29 11:24:11 +01:00
15 lines
297 B
Bash
Executable File
15 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
|
|
WORKDIR=$PWD
|
|
echo "Work directory: $WORKDIR"
|
|
cd ..
|
|
git clone https://github.com/owncloud/core
|
|
cd core
|
|
git submodule update --init
|
|
mkdir apps2
|
|
ln -s $WORKDIR apps2
|
|
git checkout urlParams_fix
|
|
git checkout -b oc6-integration
|
|
git fetch origin
|
|
git merge origin/improved_request
|
|
cd $WORKDIR |