forked from googlearchive/gamebuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sync-mp-copy.sh
67 lines (54 loc) · 1.79 KB
/
sync-mp-copy.sh
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/bash
# Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -e
set -o pipefail
DELETED=$(git ls-files -d)
if [ ! -z "$DELETED" ]
then
echo "You have deleted some tracked files - we can't sync this yet. Press enter to exit."
read; exit 1
fi
CURR_COMMIT=$(git rev-parse HEAD)
# Make sure we're in the project folder
stat Assets > /dev/null
# Make sure the copy exists
stat ../proto-copy > /dev/null
pushd ../proto-copy > /dev/null
echo
echo -- Resetting proto-copy..
git reset --hard
COPY_COMMIT=$(git rev-parse HEAD)
if [ "$CURR_COMMIT" != "$COPY_COMMIT" ]; then
echo
echo -- Switching proto-copy to commit $CURR_COMMIT ..
git fetch --all
git checkout $CURR_COMMIT
fi
UNTRACKED_IN_COPY=$(git ls-files --others --exclude-standard)
if [ ! -z "$UNTRACKED_IN_COPY" ]
then
echo
echo -- Deleting untracked files in proto-copy..
git ls-files --others --exclude-standard | xargs -I % rm -v %
fi
popd > /dev/null
echo
echo -- Copying modified and untracked files..
git ls-files -m --others --exclude-standard | xargs -I % cp -v % ../proto-copy/%
echo
echo -- All done! Foreground Unity to re-compile.
echo
echo '-- Performing sanity check (diff -rqw on Assets/Scripts), but you can proceed'
diff -rqw Assets/Scripts ../proto-copy/Assets/Scripts