diff options
author | Lucian Poston <lucian.poston@gmail.com> | 2015-12-08 17:55:04 -0800 |
---|---|---|
committer | Lucian Poston <lucian.poston@gmail.com> | 2015-12-08 17:55:04 -0800 |
commit | 5581ca717fef3fc25a46674f606620d7d3357be4 (patch) | |
tree | a13a3186a91b05a441a07b52c23319c58cdcc23b /scripts | |
parent | ebuild bumped to 0.3 (diff) | |
download | tatt-5581ca717fef3fc25a46674f606620d7d3357be4.tar.gz tatt-5581ca717fef3fc25a46674f606620d7d3357be4.tar.bz2 tatt-5581ca717fef3fc25a46674f606620d7d3357be4.zip |
Comment unmask lines so cleanup script works with -f
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/tatt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/tatt b/scripts/tatt index ba83ba8..de80917 100755 --- a/scripts/tatt +++ b/scripts/tatt @@ -194,12 +194,12 @@ if not myJob.packageList==None: else: unmaskfile.write(p.packageString()) if myJob.type=="stable": - unmaskfile.write("\n") + pass elif myJob.type=="keyword": - unmaskfile.write(" ** \n") + unmaskfile.write(" ** ") else: print ("Uh Oh, no job.type? Tell tomka@gentoo.org to fix this!") - unmaskfile.write("\n") + unmaskfile.write(" # Job " + myJob.name + "\n") print ("Unmasked " + p.packageString()+ " in "+config['unmaskfile']) unmaskfile.close() ## Write the scripts |