We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa28167 commit 0fdcaafCopy full SHA for 0fdcaaf
docs/bin/checkout-local-filament-4.x
@@ -7,13 +7,11 @@ DOCS_VERSIONS=(
7
)
8
9
for v in "${DOCS_VERSIONS[@]}"; do
10
- if [ -d "filament/$v" ]; then
11
- echo "Pulling latest documentation updates for $v..."
12
- (cd filament/$v && git pull)
13
- else
+ if [ ! -d "filament/$v" ]; then
14
echo "Cloning $v..."
15
git clone --single-branch --branch "$v" [email protected]:filamentphp/filament.git "filament/$v"
16
fi;
17
done
18
+rm -rf filament/4.x
19
ln -sf ../../../filament filament/4.x
0 commit comments