Skip to content
Snippets Groups Projects
Commit 88f997ee authored by Arthur Coolen's avatar Arthur Coolen
Browse files

BugID: 902

Script changed for use on Windows
parent a52bbbd7
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
curPath=C:`pwd`
curPath=`pwd`
if [ "$OSTYPE" = "win32" ]; then
curPath=C:`pwd`
fi
sysName="CTU1"
export PVSS_II=$curPath/config/config
PVSStoolSyncTypes -system 1 $sysName -project $1
cp config/progs config/progs.orig
cp config/progs.nav config/progs
PVSS00pmon -proj $1 &
......@@ -16,9 +17,12 @@ echo -n "Importing Navigator specific DPT's and DP's..."
PVSS00ascii -in dplist/nav_fw/XTU_Navigator_database.dpl -currentproj; echo "(done)"
echo -n "Importing fixed datapoints..."
#cd ../Deployment/data/PVSS/
#./create_db_files PVSS
#./create_db_files OBS
if [ "$OSTYPE" != "win32" ]; then
cd ../Deployment/data/PVSS/
./create_db_files PVSS
./create_db_files OBS
fi
PVSS00ascii -in PVSS_datapointtypes.dpl -currentproj; echo "(done)"
PVSS00ascii -in PVSS_datapoints.dpl -currentproj; echo "(done)"
PVSS00ascii -in OBS_datapointtypes.dpl -currentproj; echo "(done)"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment