Skip to content

v2.0.1

Latest
Compare
Choose a tag to compare
@marcuwynu23 marcuwynu23 released this 21 Dec 13:39
· 4 commits to main since this release

v2.0.1 - Patch Release

Added:

  • Introduced special handling for blocks that start with a dot (.) in the script.
    • Blocks starting with a dot will always execute, regardless of other conditions.
    • This feature ensures that commands within dot-prefixed blocks are always processed and executed.

Example:

::ASYNC

.init{
   + echo "Hello"
}

dev {
 + echo Hello World > test.txt && cat test.txt
}

dev2 {
 + echo Hello World1 > test1.txt && cat test1.txt
}

.test {
  + echo "Hello test"
}
In this example, .init and .test blocks will always be executed.

## Fixed:
Improved handling of block definitions to ensure correct processing of commands.


**Full Changelog**: https://github.com/marcuwynu23/Auto/compare/v2.0.0...v2.0.1