We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d1d33e commit 8523250Copy full SHA for 8523250
1 file changed
scripts/cleanup-github-actions.ts
@@ -6,6 +6,10 @@ const pluginPath = path.resolve('./src/index.ts');
6
// Uninstall resources that have Codify resource definitions
7
await PluginTester.uninstall(pluginPath, [
8
{ type: 'docker' },
9
+ { type: 'aws-cli'}
10
]);
11
-await testSpawn('apt-get autoremove -y ruby rpm python3 rustc golang', { requiresRoot: true })
12
+await testSpawn('apt-get autoremove -y ruby* rpm python*', { requiresRoot: true });
13
+await testSpawn('rustup self uninstall -y');
14
+
15
+await testSpawn('rm -rf /usr/bin/go', { requiresRoot: true })
0 commit comments