This website works better with JavaScript.
Home
Help
Register
Sign In
buff
/
pEpEngine
forked from
pEp.foundation/pEpEngine
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
32
Wiki
Activity
Browse Source
Added cheesy little script that will remove any damaging leftovers without a full hg clean in the src/asn.1/sync directories
doc_update_sequoia
Krista Bennett
4 years ago
parent
6fbddd2ab3
commit
f63e67fc28
1 changed files
with
6 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
clean_sync_leftovers.sh
+ 6
- 0
clean_sync_leftovers.sh
View File
@ -0,0 +1,6 @@
#!/bin/bash
cd
src
;
hg status .
|
sed
'/?\ /!d'
|
sed
's/?\ //'
|
xargs rm
cd
../asn.1
;
hg status .
|
sed
'/?\ /!d'
|
sed
's/?\ //'
|
xargs rm
cd
../sync
;
hg status .
|
sed
'/?\ /!d'
|
sed
's/?\ //'
|
xargs rm
cd
..
Write
Preview
Loading…
Cancel
Save