Difference between revisions of "Batch Conversion Limitations"

From eXo Wiki
Jump to navigation Jump to search
Line 1: Line 1:
For batch files to successfully convert into bash files for Linux and MacOS, there are some limitations for how they can be written. This page is to ensure that team members writing batch files are aware of some of those limitations.
For batch files to successfully convert into bash files for Linux and MacOS, there are some limitations for how they can be written. This page is to ensure that team members writing batch files are aware of some of those limitations.


=== Indenting nested if statements and for loops is necessary. ===
=== Indenting multi-line nested if statements and for loops is necessary. ===
With the limitations of tooling, nested statements that written without indentation will fail to convert.
With the limitations of tooling, nested statements that written without indentation will fail to convert.


Line 24: Line 24:
   )
   )
)
)
</pre>
Something like this is also okay:
<pre style="color: blue;">
if %nsl%==On (
  if %PPmode%==Off (
      if %filter%==On (
        set conf=".\emulators\dosbox\Staging_noline_sl.conf"
        goto preinstall)))
</pre>
</pre>



Revision as of 12:44, 21 April 2026

For batch files to successfully convert into bash files for Linux and MacOS, there are some limitations for how they can be written. This page is to ensure that team members writing batch files are aware of some of those limitations.

Indenting multi-line nested if statements and for loops is necessary.

With the limitations of tooling, nested statements that written without indentation will fail to convert.

Example that fails to convert:

if [...] (
some command
if [...] (
some command
)
)

Instead, anything that is nested should have spacing to indicate the level of nesting. The closing parentheses are especially important.

Example that successfully converts:

if [...] (
  some command
  if [...] (
    some command
  )
)

Something like this is also okay:

if %nsl%==On (
   if %PPmode%==Off (
      if %filter%==On (
         set conf=".\emulators\dosbox\Staging_noline_sl.conf"
         goto preinstall)))

Labels must never be placed inside of loops or conditions.

The converted goto function has been designed to work through stack frames for Linux and MacOS. For this reason, a label must never be placed inside of a loop or condition. Such code will fail to convert.

Example that fails to convert:

if exist file2.txt goto mylabel
if exist .\mydir\file1.txt (
  echo file1 exists
  :mylabel
  echo This does not convert
)

Example that successfully converts:

if exist file2.txt goto mylabel
if exist .\mydir\file1.txt (
  echo file1 exists
  goto mylabel
)
goto skip
:mylabel
echo This does not converts
:skip