Skip to content

Commit

Permalink
chore: internal sync script
Browse files Browse the repository at this point in the history
  • Loading branch information
osdnk committed Sep 18, 2020
1 parent cd92295 commit 5688518
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions internalSyncRainbow.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

if [ $1 == "from" ]
then
cp -R ../../r/src/react-native-animated-charts/src/* src
cp -R ../../r/src/react-native-animated-charts/Example/src/* Example/src
fi

if [ $1 == "to" ]
then
cp -R src/* ../../r/src/react-native-animated-charts/src
cp -R Example/src/* ../../r/src/react-native-animated-charts/Example/src
fi

0 comments on commit 5688518

Please sign in to comment.