?login_element?

Subversion Repositories NedoOS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1.     ; check warning about relative path starting with windows drive letter
  2.  
  3.     ; relative path should display warning (difficult to append/change path by prefixing the user string)
  4.     INCLUDELUA "c:relative_win_drive_path.some.nonexisting.file"
  5.  
  6.     ; absolute path is ok-ish (still pain if you cooperate with several developers on same project, but your choice)
  7.     INCLUDELUA "c:/absolute_win_drive_path.some.nonexisting.file"
  8.  
  9.     ; check LuaShellExec routine - can't capture output (echo is stdout and redirect to stderr differs per OS)
  10.     LUA PASS3
  11.         sj.shellexec("echo hello")
  12.     ENDLUA
  13.