Commit ca772bf1 by sikang

bug fix

parent 09c85894
......@@ -70,6 +70,8 @@ def process_file_content(path, file_name):
with open(path, "r", encoding="utf-8") as f:
# readlines以列表的形式将文件读出
lines = f.readlines()
if "***Keep***" in lines:
return
with open(path, "w", encoding="utf-8") as f_w:
isReturn = False
......
......@@ -26,7 +26,7 @@ init(){
#四大组件混淆
./rename_project.sh || { echo "rename_project error!"; exit 1; }
#代码结构混淆
# ./insert.py || { echo "insert_code error!"; exit 1; }
./insert.py || { echo "insert_code error!"; exit 1; }
cd ../../../
}
......
......@@ -110,8 +110,8 @@ then
elif (($commod == '10'))
then
cd garble
chmod a+x insert.py
./insert.py
# chmod a+x insert.py
# ./insert.py
elif (($commod == '11'))
then
......
//***Keep***
package com.common.bean;
import java.io.Serializable;
public class UploadCollectionBean implements Serializable {
private String imei;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment