Browse Source

AMBARI-18275. Ambari server upgrade script deletes all .pyc files (Dmitry Lysnichenko via smohanty)

Sumit Mohanty 9 năm trước cách đây
mục cha
commit
114ccb3d5d
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      ambari-server/conf/unix/install-helper.sh

+ 1 - 1
ambari-server/conf/unix/install-helper.sh

@@ -48,7 +48,7 @@ clean_pyc_files(){
   # cleaning old *.pyc files
   find $RESOURCE_MANAGEMENT_DIR/ -name *.pyc -exec rm {} \;
   find $COMMON_DIR/ -name *.pyc -exec rm {} \;
-  find $AMBARI_SEVER/ -name *.pyc -exec rm {} \;
+  find $AMBARI_SERVER/ -name *.pyc -exec rm {} \;
 }