mirror of
https://github.com/FoggedLens/deflock-app.git
synced 2026-02-12 16:52:51 +00:00
12 lines
439 B
Bash
Executable File
12 lines
439 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Super simple test - just replace one constant first
|
|
echo "🔄 Testing with kClientName..."
|
|
|
|
find . -name "*.dart" -not -path "./lib/dev_config.dart" -exec grep -l "kClientName" {} \;
|
|
|
|
echo "Found files with kClientName. Now replacing..."
|
|
|
|
find . -name "*.dart" -not -path "./lib/dev_config.dart" -exec sed -i '' 's/kClientName/dev.kClientName/g' {} \;
|
|
|
|
echo "✅ Done with test. Check if lib/services/uploader.dart changed" |