|
@@ -2,11 +2,11 @@
|
|
|
|
|
|
## prepare
|
|
|
|
|
|
-> Setup all stuffs needed for runing the examples
|
|
|
+> Setup all stuffs needed for running the examples
|
|
|
|
|
|
```sh
|
|
|
git clone --recursive git@github.com:tauri-apps/examples.git \
|
|
|
-|| (cd examples && git pull origin master; cd ..) # always prepare up-to-date examples in case it's already available
|
|
|
+|| (cd examples && git pull origin dev; cd ..) # always prepare up-to-date examples in case it's already available
|
|
|
|
|
|
export TAURI_DIST_DIR=$PWD/tauri/test/fixture/dist
|
|
|
export TAURI_DIR=$PWD/tauri/test/fixture/src-tauri
|
|
@@ -44,8 +44,8 @@ if (-Not (Test-Path $CWD\examples -PathType Any)) {
|
|
|
} | Receive-Job -AutoRemoveJob -Wait
|
|
|
}
|
|
|
|
|
|
-# Enter the examples folder and pull the latest data from origin/master
|
|
|
-cd examples; git pull origin master; cd ..
|
|
|
+# Enter the examples folder and pull the latest data from origin/dev
|
|
|
+cd examples; git pull origin dev; cd ..
|
|
|
|
|
|
# Check that dist_path and src_path exist.
|
|
|
if ((Test-Path $dist_path -PathType Any) -Or (Test-Path $src_path -PathType Any)) {
|