forked from Scottcjn/Rustchain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflame_cleanup_v3.sh
More file actions
48 lines (48 loc) · 2.16 KB
/
flame_cleanup_v3.sh
File metadata and controls
48 lines (48 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash
cd /mnt/c/Users/TRS/desktop/Rustchain_Repo_Scaffold
# Final structural cleanup pass
mkdir -p badges
mv -f badge_uber_dev_forge.json badges/ 2>/dev/null || true
git rm -f --cached badge_uber_dev_forge.json 2>/dev/null || true
git add badges/badge_uber_dev_forge.json
mkdir -p tools
mv -f bios_pawpaw_detector.py tools/ 2>/dev/null || true
git rm -f --cached bios_pawpaw_detector.py 2>/dev/null || true
git add tools/bios_pawpaw_detector.py
mv -f gpu_display_detector.py tools/ 2>/dev/null || true
git rm -f --cached gpu_display_detector.py 2>/dev/null || true
git add tools/gpu_display_detector.py
mv -f os_detector.py tools/ 2>/dev/null || true
git rm -f --cached os_detector.py 2>/dev/null || true
git add tools/os_detector.py
mv -f anti_vm.py tools/ 2>/dev/null || true
git rm -f --cached anti_vm.py 2>/dev/null || true
git add tools/anti_vm.py
mv -f ergo_wrapper.py tools/ 2>/dev/null || true
git rm -f --cached ergo_wrapper.py 2>/dev/null || true
git add tools/ergo_wrapper.py
mv -f quantum_flux_validator.py tools/ 2>/dev/null || true
git rm -f --cached quantum_flux_validator.py 2>/dev/null || true
git add tools/quantum_flux_validator.py
mv -f validator_core.py tools/ 2>/dev/null || true
git rm -f --cached validator_core.py 2>/dev/null || true
git add tools/validator_core.py
mv -f validator_core_with_badge.py tools/ 2>/dev/null || true
git rm -f --cached validator_core_with_badge.py 2>/dev/null || true
git add tools/validator_core_with_badge.py
mv -f weighted_decryption.py tools/ 2>/dev/null || true
git rm -f --cached weighted_decryption.py 2>/dev/null || true
git add tools/weighted_decryption.py
mkdir -p docs
mv -f chain_architecture.md docs/ 2>/dev/null || true
git rm -f --cached chain_architecture.md 2>/dev/null || true
git add docs/chain_architecture.md
mv -f tokenomics_v1.md docs/ 2>/dev/null || true
git rm -f --cached tokenomics_v1.md 2>/dev/null || true
git add docs/tokenomics_v1.md
mkdir -p scripts
mv -f update_git_rustchain.sh scripts/ 2>/dev/null || true
git rm -f --cached update_git_rustchain.sh 2>/dev/null || true
git add scripts/update_git_rustchain.sh
git commit -m "🔥 Flame Cleanup v3: Moved final misplaced files into structured folders"
git push origin main