Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • develop
  • release_1_0_7
  • release_1_0_6
  • release_1_0_5
  • release_1_0_4
  • release_1_0_3
  • release_1_0_2
  • release_1_0_1
9 results

pom.xml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    install_rcm.sh 312 B
    #!/bin/bash
    
    echo "Deploy module and CLI in RCM environment"
    
    # Copy Python module
    ipath=/home/operateur/.local/lib/python3.6/site-packages/FofbTool
    mkdir -p $ipath
    cp FofbTool/*.py $ipath/ -rvf
    cp FofbTool/*.cfg $ipath/ -rvf
    
    # Copy bin CLI
    cp bin/FofbTool ~/bin/ -vf
    
    # Put exec rights
    chmod +x ~/bin/FofbTool