Advertisement
Guest User

Untitled

a guest
Jan 2nd, 2017
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #
  2. # These are the working build steps.
  3. # Build step 1
  4. #
  5. echo "build 1"
  6. $keep_me = "fubar"
  7. echo "do more stuff"
  8. $save_Variable = "Keep_me=" + $keep_me
  9. $save_variable | Out-file build.prop -Encoding ASCII
  10.  
  11. #
  12. # These are the working build steps.
  13. # Build Step 2
  14. #
  15. echo "build 2"
  16. $keep_me = $env:Keep_me
  17. echo "Did it make it"
  18. echo "$Keep_me"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement