diff --git a/ansible/roles/offline-installer/templates/setupOfflineInstaller.sh.j2 b/ansible/roles/offline-installer/templates/setupOfflineInstaller.sh.j2
index 137f611b376f4c3d0b9c5225f32dfb3fc3dd2697..5eeb0e29d6d596ae4c94742fdbd288709fb10ced 100644
--- a/ansible/roles/offline-installer/templates/setupOfflineInstaller.sh.j2
+++ b/ansible/roles/offline-installer/templates/setupOfflineInstaller.sh.j2
@@ -12,16 +12,13 @@ npm run dist
 if [ "{{offline_installer_type}}" == "windows32" ];
 then
 	npm run dist-win32
-        ls -lR
 	cp 'dist/1.0.0/win/ia32/DIKSHA Setup 1.0.0.exe' ../offline_artifacts/{{time}}/
 elif [ "{{offline_installer_type}}" == "windows64" ];
 then
 	npm run dist-win64
-        ls -lR
         cp 'dist/1.0.0/win/x64/DIKSHA Setup 1.0.0.exe' ../offline_artifacts/{{time}}/
 elif [ "{{offline_installer_type}}" == "debian" ];
 then
 	npm run dist-linux
-        ls -lR
         cp dist/1.0.0/linux/x64/DIKSHA_1.0.0_amd64.deb ../offline_artifacts/{{time}}/
 fi