Skip to content

Commit

Permalink
Merge pull request #12 from chrisjbreisch/feature/compound-line
Browse files Browse the repository at this point in the history
directory cleanup
  • Loading branch information
chrisjbreisch authored May 21, 2022
2 parents 7a45a9e + 58296f7 commit 8d435eb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace Trs80.Lewel1Basic.Environment.Test
namespace Trs80.Level1Basic.Environment.Test
{
[TestClass]
public class UnitTest1
Expand All @@ -10,4 +10,4 @@ public void TestMethod1()
{
}
}
}
}
9 changes: 9 additions & 0 deletions clean.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash
for dir in $(ls -R | grep -e 'bin:' ); do
path=$(echo -n $dir | sed -e 's/://')
rm -rvf $path
done
for dir in $(ls -R | grep -e 'obj:' ); do
path=$(echo -n $dir | sed -e 's/://')
rm -rvf $path
done

0 comments on commit 8d435eb

Please sign in to comment.