bimagic 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +2 -2
- package/README.md +1 -1
- package/bimagic +3 -9
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2026 orion-kernel
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Bimagic - Git Wizard
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img width="400" style="border-radius: 12px;" alt="Image" src="
|
|
4
|
+
<img width="400" style="border-radius: 12px;" alt="Image" src="./Sample/logo.png" />
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center">By Bimbok and adityapaul26</p>
|
package/bimagic
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
2
|
|
|
3
|
-
VERSION="v1.5.
|
|
3
|
+
VERSION="v1.5.1"
|
|
4
4
|
|
|
5
5
|
if [[ "$1" == "--version" || "$1" == "-v" ]]; then
|
|
6
6
|
echo "Bimagic Git Wizard $VERSION"
|
|
@@ -485,14 +485,8 @@ clone_repo() {
|
|
|
485
485
|
# FIX: Add --no-cone so Git accepts individual file paths
|
|
486
486
|
gum spin --title "Configuring sparse checkout..." -- git sparse-checkout init --no-cone
|
|
487
487
|
|
|
488
|
-
#
|
|
489
|
-
|
|
490
|
-
# that sparse-checkout patterns handle full paths.
|
|
491
|
-
# However, 'git sparse-checkout set' treats arguments as patterns.
|
|
492
|
-
# We turn off cone for precise file selection transparency if needed, but standard 'set' often works.
|
|
493
|
-
# To be safe for exact file paths, we simply pass them.
|
|
494
|
-
# If the list is huge, this might fail on command line length.
|
|
495
|
-
# Ideally we pipe to 'git sparse-checkout set --stdin', but gum returns newline separated.
|
|
488
|
+
# Set the selected paths
|
|
489
|
+
echo "$selected_paths" | git sparse-checkout set --stdin
|
|
496
490
|
|
|
497
491
|
print_status "Downloading selected files..."
|
|
498
492
|
(
|