Skip to content
Snippets Groups Projects
Allrun 501 B
Newer Older
  • Learn to ignore specific revisions
  • #!/bin/sh
    cd ${0%/*} || exit 1                        # Run from this directory
    . $WM_PROJECT_DIR/bin/tools/RunFunctions    # Tutorial run functions
    
    if command -v pMesh > /dev/null
    then
        runApplication pMesh
    else
        echo "Skip tutorial - no pMesh found"
        echo End
        exit 0
    fi
    
    runApplication makeFaMesh
    
    # Restore initial fields
    restore0Dir
    
    runApplication releaseAreaMapping
    
    runApplication $(getApplication)
    
    #------------------------------------------------------------------------------