master #81
@@ -0,0 +1,5 @@
|
|||||||
|
new_version.sh
|
||||||
|
.latest_version
|
||||||
|
.vscode/
|
||||||
|
example/
|
||||||
|
models/
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
../../.pubignore
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
../../.pubignore
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
../../.pubignore
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
../../.pubignore
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
../../.pubignore
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
../../.pubignore
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
../../.pubignore
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
../../.pubignore
|
||||||
Symlink
+1
@@ -0,0 +1 @@
|
|||||||
|
../../.pubignore
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
../../.pubignore
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
../../.pubignore
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
../../.pubignore
|
||||||
Symlink
+1
@@ -0,0 +1 @@
|
|||||||
|
../../.pubignore
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
../../.pubignore
|
||||||
@@ -32,6 +32,11 @@ for package in "$PACKAGES_DIR"/*; do
|
|||||||
rm "$package/.gitignore"
|
rm "$package/.gitignore"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Remove .pubignore file if it exists
|
||||||
|
if [ -f "$package/.pubignore" ]; then
|
||||||
|
rm "$package/.pubignore"
|
||||||
|
fi
|
||||||
|
|
||||||
# Remove AUTHORS file if it exists
|
# Remove AUTHORS file if it exists
|
||||||
if [ -f "$package/AUTHORS" ]; then
|
if [ -f "$package/AUTHORS" ]; then
|
||||||
rm "$package/AUTHORS"
|
rm "$package/AUTHORS"
|
||||||
|
|||||||
@@ -37,6 +37,12 @@ for package in "$PACKAGES_DIR"/*; do
|
|||||||
ln -s ../../.gitignore .gitignore
|
ln -s ../../.gitignore .gitignore
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Create symbolic link to the main .pubignore file if it does not already
|
||||||
|
# exist
|
||||||
|
if [ ! -f .pubignore ]; then
|
||||||
|
ln -s ../../.pubignore .pubignore
|
||||||
|
fi
|
||||||
|
|
||||||
# Create symbolic link to the main AUTHORS file if it does not already
|
# Create symbolic link to the main AUTHORS file if it does not already
|
||||||
# exist
|
# exist
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user