mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-01-30 22:50:22 +08:00
11 lines
272 B
Bash
11 lines
272 B
Bash
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
rm -rf src/vendor
|
|
mkdir -p src/vendor
|
|
cp -r ../../node_modules/@react-navigation/stack/src/* src/vendor/
|
|
|
|
# Created with: diff -ruN node_modules/@react-navigation/stack/src src/vendor > scripts/stack.patch
|
|
patch -p0 -i scripts/stack.patch
|