#45 Build breaks when not building the sky130_osu_...
# open_pdks
g
#45 Build breaks when not building the sky130_osu_sc_t18 library Issue opened by agorararmard The build breaks when the sky130_osu_sc_t18 library is not there, because it tries to move the tlef file with the mv command without checking if the file exists or not, and so the build fails if it's not there (which will always be the case until the library is released).
Copy code
mv `pwd`/sky130A/libs.ref/sky130_osu_sc_t18/techlef/sky130_osu_sc.tlef `pwd`/sky130A/libs.ref/sky130_osu_sc_t18/techlef/sky130_osu_sc_t18.tlef

mv: cannot stat `/home/travis/build/RTimothyEdwards/open_pdks/sky130/sky130A/libs.ref/sky130_osu_sc_t18/techlef/sky130_osu_sc.tlef': No such file or directory
The solution to this issue is in this PR #39, but it was closed without being merged :-) RTimothyEdwards/open_pdks