Csh script and tcl

I have csh script and call tck command but it do nothing. can you help me?
I only can see it echo

#!/bin/csh -f

set mypath = `pwd`

echo $mypath
if ($mypath =~ *PLL*) then
echo "source ../PreBoot.qel"
else if ($mypath !~ *PLL*) then
echo "source ../hdfuse.qel"
endif

if i remove echo it did not run the command source ../hdfuse.qel or ../PreBoot.qel ? how do i run it? Thanks

#!/bin/csh -f

set mypath = `pwd`

echo $mypath
if ($mypath =~ *PLL*) then
source ../PreBoot.qel
else if ($mypath !~ *PLL*) then
source ../hdfuse.qel
endif

No output either way?